Dashboard Temp Share Shortlinks Frames API

HTMLify

style.css
Views: 15 | Author: huxn-webdev
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.container {
  width: 40%;
  height: 40%;
  background: #1c1c1c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container input {
  padding: 10px 20px;
  margin-bottom: 20px;
  width: 80%;
  outline: none;
}

.container button {
  padding: 10px 20px;
  border: none;
  background: transparent;
  background: crimson;
  width: 150px;
  color: #fff;
  cursor: pointer;
}

.background-image {
  background-image: url("https://images8.alphacoders.com/601/thumb-1920-601705.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -20px;
  right: -20px;
  z-index: -1;
  filter: blur(20px);
}